home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / FREENET / MELL / NETLIB00 / NetLib / h / socketlib
Text File  |  1994-12-20  |  210b  |  13 lines

  1. #ifndef __socketlib_h
  2. #define __socketlib_h
  3.  
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7.  
  8. extern char *__socketlib_readline(FILE *file);
  9.  
  10. #define strdup(s) strcpy(malloc(strlen(s)+1), s)
  11.  
  12. #endif
  13.